Git for dummies
Git for dummies
Version Taggen:
| git checkout release/513 git pullgit tag 51300git push origin tags/51300 |
| :---- |
Version mit Buildhelber erhöhen, svn message kopieren, dialog schließen.
| git add \-ugit commit \-m"Kopierter Wert von vorhin"git push |
| :---- |
### Merge in Tag:
| git pull \-tagsgit checkout tags/51300git tag \-d 51300git cherry-pick xxxxxxxxgit tag 51300git push origin tags/51300 \-f |
| :---- |
Difference vom master zum Branch:
git cherry master release/515 | grep "+" | awk '{print $2}' | xargs git log \--author=Manuel \-1;